// cwctype standard header
#ifndef _CWCTYPE_
#define _CWCTYPE_

 #if _IS_GHS
#include <wctype.h>

 #if defined(__NAMESPACES) && !defined(__EMBEDDED_CXX_HEADERS)
namespace std {
    using ::wint_t;
    using ::wctrans_t;
    using ::wctype_t;
    using ::iswalnum;
    using ::iswalpha;
    using ::iswblank;
    using ::iswcntrl;
    using ::iswctype;
    using ::iswdigit;
    using ::iswgraph;
    using ::iswlower;
    using ::iswprint;
    using ::iswpunct;
    using ::iswspace;
    using ::iswupper;
    using ::iswxdigit;
    using ::towctrans;
    using ::towlower;
    using ::towupper;
    using ::wctrans;
    using ::wctype;
}	// namespace std
 #endif /* defined(__NAMESPACES), etc. */

 #else /* _IS_GHS */
#include <yvals.h>

#ifdef _STD_USING
 #undef _STD_USING
  #include <wctype.h>
 #define _STD_USING

#else /* _STD_USING */
 #include <wctype.h>
#endif /* _STD_USING */

	/* remove any (improper) macro overrides */
#undef iswalnum
#undef iswalpha
#undef iswcntrl
#undef iswctype
#undef iswdigit
#undef iswgraph
#undef iswlower
#undef iswprint
#undef iswpunct
#undef iswspace
#undef iswupper
#undef iswxdigit
#undef towctrans
#undef towlower
#undef towupper
#undef wctrans
#undef wctype

 #ifdef _GLOBAL_USING
_STD_BEGIN
 #if defined(__BORLANDC__) || defined(__APPLE__)	/* compiler test */

 #else /* defined(__BORLANDC__) */
using _CSTD wint_t; using _CSTD wctrans_t; using _CSTD wctype_t;

using _CSTD iswalnum; using _CSTD iswalpha; using _CSTD iswcntrl;
using _CSTD iswctype; using _CSTD iswdigit; using _CSTD iswgraph;
using _CSTD iswlower; using _CSTD iswprint; using _CSTD iswpunct;
using _CSTD iswspace; using _CSTD iswupper; using _CSTD iswxdigit;
using _CSTD towctrans; using _CSTD towlower; using _CSTD towupper;
using _CSTD wctrans; using _CSTD wctype;
 #endif /* defined(__BORLANDC__) */

 #if _HAS_C9X
using _CSTD iswblank;
 #endif /* _HAS_C9X */
_STD_END
 #endif /* _GLOBAL_USING */

 #endif /* _IS_GHS */
#endif /* _CWCTYPE_ */

/*
 * Copyright (c) by P.J. Plauger. All rights reserved.
 * Consult your license regarding permissions and restrictions.
V6.50:1422 */
